summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/impl-foreign[fundemental[local]]-for-foreign.rs
blob: 7b83b048548eba3240733ff49f6903355b20a56d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// compile-flags:--crate-name=test
// aux-build:coherence_lib.rs
// check-pass

extern crate coherence_lib as lib;
use lib::*;
use std::rc::Rc;

struct Local;
struct Local1<T>(Rc<T>);

impl Remote1<Box<Local>> for i32 {}
impl Remote1<Box<Local1<i32>>> for f64 {}
impl<T> Remote1<Box<Local1<T>>> for f32 {}

fn main() {}